home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / programmer / 1209 < prev    next >
Encoding:
Text File  |  1996-08-05  |  1.3 KB  |  35 lines

  1. Newsgroups: comp.sys.amiga.programmer
  2. Path: EU.net!sun4nl!hguijt
  3. From: hguijt@inter.NL.net (Hans Guijt)
  4. Subject: Re: Amiga Memory Map Needed!!!
  5. Message-ID: <DLAAA2.39F@inter.NL.net>
  6. Organization: NLnet
  7. X-Newsreader: TIN [version 1.2 PL2]
  8. Date: Tue, 16 Jan 1996 17:08:26 GMT
  9.  
  10.  
  11. >Anyone know of anywhere on the 'net where I can get a half-decent Amiga
  12. >memory map.  I've got one (kind of) called AGA.guide, but one has to be an
  13. >engineer to figure out half of it. Or...any books for the amiga that go into
  14. >the kind of detail that the classic book "Mapping The '64" had.
  15.  
  16. The amiga does not have a memory map, as every machine may be configured
  17. differently. The way you access memory is as follows: you decide how much
  18. you want and what type it should be, and then you call a BIOS function
  19. called AllocVec. The result is in A0 and is either the address of your
  20. memory or 0, which indicates there was not enough memory left. To make
  21. matters more interesting the BIOS is also located at variable addresses on
  22. different Amiga's. In fact, the only thing you can be sure of is address 4,
  23. which contains the pointer to the BIOS.
  24.  
  25. A good book would be the Hardware Reference Manual, but be sure to get the
  26. Rom Kernel Manual: Libraries as well. Both are available from
  27. Addison&Wesley, but I have to refer you to the FAQ for ISBN numbers.
  28.  
  29.  
  30. Bye,
  31.  
  32. Hans
  33.  
  34.  
  35.